home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / RCS / perror.c,v < prev    next >
Text File  |  1991-10-02  |  2KB  |  110 lines

  1. head     1.2;
  2. branch   ;
  3. access   ;
  4. symbols  sprited:1.2.1;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.2
  10. date     88.07.25.13.12.59;  author ouster;  state Exp;
  11. branches 1.2.1.1;
  12. next     1.1;
  13.  
  14. 1.1
  15. date     88.06.26.16.21.32;  author ouster;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19. 1.2.1.1
  20. date     91.10.02.18.53.23;  author kupfer;  state Exp;
  21. branches ;
  22. next     ;
  23.  
  24.  
  25. desc
  26. @@
  27.  
  28.  
  29. 1.2
  30. log
  31. @Lint.
  32. @
  33. text
  34. @/* 
  35.  * perror.c --
  36.  *
  37.  *    Source code for the "perror" library procedure.
  38.  *
  39.  * Copyright 1988 Regents of the University of California
  40.  * Permission to use, copy, modify, and distribute this
  41.  * software and its documentation for any purpose and without
  42.  * fee is hereby granted, provided that the above copyright
  43.  * notice appear in all copies.  The University of California
  44.  * makes no representations about the suitability of this
  45.  * software for any purpose.  It is provided "as is" without
  46.  * express or implied warranty.
  47.  */
  48.  
  49. #ifndef lint
  50. static char rcsid[] = "$Header: perror.c,v 1.1 88/06/26 16:21:32 ouster Exp $ SPRITE (Berkeley)";
  51. #endif not lint
  52.  
  53. #include <stdio.h>
  54. #include <errno.h>
  55. #include <stdlib.h>
  56. #include <string.h>
  57.  
  58.  
  59. /*
  60.  *----------------------------------------------------------------------
  61.  *
  62.  * perror --
  63.  *
  64.  *    Print a message describing the current error condition (as
  65.  *    given by errno), with a given introductory message.
  66.  *
  67.  * Results:
  68.  *    None.
  69.  *
  70.  * Side effects:
  71.  *    Stuff gets printed.
  72.  *
  73.  *----------------------------------------------------------------------
  74.  */
  75.  
  76. void
  77. perror(msg)
  78.     char *msg;            /* Message to print before the message
  79.                  * describing the error. */
  80. {
  81.     if ((msg != 0) && (*msg != 0)) {
  82.     fprintf(stderr, "%s: ", msg);
  83.     }
  84.     fprintf(stderr, "%s\n", strerror(errno));
  85. }
  86. @
  87.  
  88.  
  89. 1.2.1.1
  90. log
  91. @Initial branch for Sprite server.
  92. @
  93. text
  94. @d17 1
  95. a17 1
  96. static char rcsid[] = "$Header: /sprite/src/lib/c/stdio/RCS/perror.c,v 1.2 88/07/25 13:12:59 ouster Exp $ SPRITE (Berkeley)";
  97. @
  98.  
  99.  
  100. 1.1
  101. log
  102. @Initial revision
  103. @
  104. text
  105. @d17 1
  106. a17 1
  107. static char rcsid[] = "$Header: proto.c,v 1.2 88/03/11 08:39:08 ouster Exp $ SPRITE (Berkeley)";
  108. d23 1
  109. @
  110.